home *** CD-ROM | disk | FTP | other *** search
/ Wildcat Files 2 / The Wildcat Files 2 (Arsenal Computer).ISO / qm-util / mci-mail.scr < prev    next >
Text File  |  1994-04-02  |  2KB  |  62 lines

  1.      ;
  2.      ; Linked script for MCI-MAIL basic service
  3.      ; Link it to your Qmodem phone directory entry for MCI-MAIL.
  4.      ; As is, this script prints all your mail, then disconnects.
  5.      ;
  6.      ; USE YOUR WORD PROCESSOR TO EDIT THIS FILE TO INCLUDE
  7.      ;           [1] Your MCI-Mail username
  8.      ;           [2] Your MCI-Mail password
  9.      ;           [3] Any MCI-Mail command(s)
  10.      ;
  11.      ;
  12.      ; Note:  examples are for standard, not advanced service
  13.      ;
  14.  
  15.  
  16. NOTE ** LOGON TO MCI-MAIL VIA DIRECT CONNECT **
  17.  
  18. TIMEOUT 60
  19.  
  20. TURNON  XON/XOFF
  21. TURNOFF ECHO LINEFEED
  22.  
  23.  
  24. SEND    "^M"                    ; MCI-Mail 'logon' is CR
  25.  
  26. WAITFOR "user name:"           ; Look for UserID prompt
  27.  
  28. SEND    "USERNAME^M"            ; [1] Send your MCI-Mail user name
  29.                                ;     followed by CR
  30.  
  31. WAITFOR "Password: "           ; Wait for MCI-Mail password prompt
  32.  
  33. SEND    "FAKE-PASSWORD^M"       ; [2] Send your password
  34.  
  35. TURNON PRINT                   ; Turn on your printer
  36.  
  37. WAITFOR "<RETURN> to continue" ; Wait for MCI-Mail to Request your input
  38.  
  39. SEND    "^M"                    ; Send a CR
  40.  
  41. WAITFOR "or EXIT):"            ; Wait for MCI-Mail to Request your input
  42.  
  43. SEND    "PRINT^M"               ; [3] Select PRINT to print messages nonstop
  44.  
  45. WAITFOR "(or MENU or EXIT):"   ; Wait for MCI-Mail to Request your input
  46.  
  47. SEND    "ALL^M"                 ; [3] Select ALL to print incoming messages
  48.                                ; only or INBOX to print just incoming
  49.                                ; messages
  50.  
  51. WAITFOR "<RETURN> to continue" ; Wait for MCI-Mail to Request your input
  52.  
  53. SEND    "^M"                    ; Send a CR
  54.  
  55. WAITFOR "(or MENU or EXIT):"   ; Wait for MCI-Mail to Request your input
  56.  
  57. SEND    "EXIT^M"                ; [3] Select EXIT to log off
  58.  
  59. HANGUP                         ; Disconnect from Phone Line
  60.  
  61. EXIT                           ; return control to keyboard
  62.